Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633458 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/116 - Simple Library Management

index.html cody/swapnilsparsh/30DaysOfJavaScript/116 - Simple Library Management/index.html
319 Views
0 Comments
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Online Library</title>
readme.md cody/swapnilsparsh/30DaysOfJavaScript/116 - Simple Library Management/readme.md
161 Views
0 Comments
# Simple Library Management

A simple Library Management Project which is easy to use and understand as a beginner.

## Functionalities :-
Input book name, author and book type to add the book. If book name is missing it will shown you error. As I used LocalStorage if you refresh or close the tab your books will not disappear. You can also search book by book name.

## Built with :-
script.js cody/swapnilsparsh/30DaysOfJavaScript/116 - Simple Library Management/script.js
154 Views
0 Comments
displayNotes(); //As the browser open it show all the stored books

let libraryForm = document.getElementById('libraryForm');

libraryForm.addEventListener('submit', (e) => {

e.preventDefault();